home *** CD-ROM | disk | FTP | other *** search
- //***********************************************************************
- //
- // CtlDemo4.h
- //
- //***********************************************************************
-
- class CMyApp : public CWinApp
- {
- public:
- virtual BOOL InitInstance ();
- };
-
- class CMainWindow : public CFrameWnd
- {
- private:
- int m_cxChar;
- int m_cyChar;
- CFont m_font;
-
- CStatic m_ctlText;
- CButton m_ctlRadioButtonRed;
- CButton m_ctlRadioButtonGreen;
- CButton m_ctlRadioButtonBlue;
- CButton m_ctlGroupBox1;
- CButton m_ctlGroupBox2;
-
- public:
- CMainWindow ();
-
- protected:
- afx_msg int OnCreate (LPCREATESTRUCT);
- afx_msg HBRUSH OnCtlColor (CDC*, CWnd*, UINT);
- afx_msg void OnButtonClicked ();
-
- DECLARE_MESSAGE_MAP ()
- };
-